home *** CD-ROM | disk | FTP | other *** search
- Path: news.bu.edu!lachesis
- From: lachesis@cs.bu.edu (wai yip)
- Newsgroups: comp.lang.c
- Subject: pointers
- Date: 25 Feb 1996 20:36:32 GMT
- Organization: Computer Science Department, Boston University, Boston, MA, USA
- Message-ID: <4gqh8g$bo4@news.bu.edu>
- NNTP-Posting-Host: csa.bu.edu
- X-Newsreader: TIN [version 1.2 PL2]
-
- can someone who knows a lot about pointers help me with this
-
- int i=3,*p;
-
- with the above declaration, what would the bottom lines do?
- *p=&i;
- p=i;
- *p=i;
- p=&i;
-
- please answer me through email because i don't usually read newsgroups.
-